home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / CURUP.CC < prev    next >
Text File  |  1993-04-04  |  209b  |  10 lines

  1. cur_up() 
  2. /* Move the cursor one row up */
  3. {
  4.         int cur_row, cur_col;
  5.         get_cur(&cur_row,&cur_col);
  6.         cur_row--;
  7.         if(cur_row<0) cur_row=24;
  8.         locate(cur_row,cur_col);
  9. }
  10.